home *** CD-ROM | disk | FTP | other *** search
/ Gigarom 1 / Gigarom Macintosh Archives (Quantum Leap)(CDRM1080320)(1993).iso / FILES / DEV / A-B / 003. SillyBalls.cpt / CSillyBalls.make < prev    next >
Text File  |  1988-08-01  |  2KB  |  50 lines

  1. #
  2. #    Macintosh Developer Technical Support
  3. #
  4. #    Simple Color QuickDraw Sample Application
  5. #
  6. #    SillyBalls
  7. #
  8. #    SillyBalls.make    -    Make Source
  9. #
  10. #    Copyright © 1988 Apple Computer, Inc.
  11. #    All rights reserved.
  12. #
  13. #    Versions:    1.0                    8/88
  14. #
  15. #    Components:    SillyBalls.p        August 1, 1988
  16. #                SillyBalls.c        August 1, 1988
  17. #                PSillyBalls.make    August 1, 1988
  18. #                CSillyBalls.make    August 1, 1988
  19. #
  20. #    This is a very simple sample program that demonstrates how to use Color 
  21. #    QuickDraw.  It is about two pages of code, and does nothing more than open
  22. #    a color window and draw randomly colored ovals in the window.
  23. #    
  24. #    The purpose is to show how to get some initial results with Color QuickDraw.
  25. #    It is a complete program and is very short to be as clear as possible.
  26. #    
  27. #    It does not have an Event Loop.  It is not fully functional in the sense that
  28. #    it does not do all the things you would expect a well behaved Macintosh 
  29. #    program to do, like size the window naturally, have an event loop, use menus, 
  30. #    etc.
  31. #
  32. #    See Sample and TESample for the general structure and MultiFinder techniques that
  33. #    we recommend that you use when building a new application.
  34. #
  35. # MPW 3.0 and later: We override the default COptions to turn on strict prototyping;
  36. #    add '-r' to your UserStartup when you tire of the warning from Make.
  37. # If you are using MPW 3.0 or later, uncomment the following line:
  38. #COptions = -r
  39. # For MPW 2.0 we use the following line so that the the complete interfaces are there:
  40. COptions = -d __ALLNU__
  41.  
  42. Objs        =    SillyBalls.c.o ∂
  43.                 "{Libraries}"Interface.o ∂
  44.                 "{CLibraries}"CRuntime.o ∂
  45.                 "{CLibraries}"CInterface.o
  46.  
  47. CSillyBalls    ƒ    {Objs} CSillyBalls.make
  48.                 Link -o {Targ} {Objs}
  49.                 SetFile {Targ} -t APPL -c '????'
  50.